home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1993 July / Internet Tools.iso / RockRidge / mail / mmdf / mmdf-IIb.43 / uip / ucbmail / sigretro.h < prev    next >
Encoding:
C/C++ Source or Header  |  1986-02-01  |  564 b   |  25 lines

  1. /*
  2.  * Copyright (c) 1980 Regents of the University of California.
  3.  * All rights reserved.  The Berkeley software License Agreement
  4.  * specifies the terms and conditions for redistribution.
  5.  *
  6.  *    @(#)sigretro.h    5.1 (Berkeley) 6/6/85
  7.  */
  8.  
  9. /*
  10.  * Define extra stuff not found in signal.h
  11.  */
  12.  
  13. #ifndef BADSIG
  14. #define    BADSIG        (int (*)()) -1        /* Return value on error */
  15. #endif BADSIG
  16.  
  17. #ifndef SIG_HOLD
  18. #define    SIG_HOLD    (int (*)()) 3        /* Phony action to hold sig */
  19. #endif SIG_HOLD
  20.  
  21. #ifndef sigmask
  22. #define sigmask(s)    (1<<(s-1))        /* this exists in 4.3 */
  23. #endif sigmask
  24.  
  25.